home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 2 / Apprentice-Release2.iso / Tools / Languages / GCC 1.37.1r14 / usr / lib / mac / dup2.c < prev    next >
Encoding:
C/C++ Source or Header  |  1993-12-08  |  155 b   |  10 lines  |  [TEXT/JRRK]

  1. #include "crtlocal.h"
  2.  
  3. int dup2(int fd1, int fd2)
  4.     {
  5.     mysleep(1);
  6.     if (crt_fd_tab[fd2].fd) close(fd2);
  7.     crt_fd_tab[fd2] = crt_fd_tab[fd1];
  8.     return fd2;
  9.     }
  10.